.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.shadowon {
  box-shadow: 0 2px 30px rgba(0, 96, 176, 0.2);
}
.lineAniAfter:after {
  transition: transform 0.5s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: left;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.box-container {
  width: 16.8rem;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
body {
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
.light {
  font-family: light;
}
.medium {
  font-family: medium;
}
.regular {
  font-family: regular;
}
@font-face {
  font-family: "bm";
  src: url('../fonts/BARLOW-MEDIUM.TTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "light";
  src: url('../fonts/MISANS-LIGHT.TTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "medium";
  src: url('../fonts/MiSans-Medium.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url('../fonts/MISANS-NORMAL.TTF');
  font-weight: normal;
  font-style: normal;
}
.pic {
  font-size: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
.pic img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pic img.phone {
  display: none;
}
.phone-nav {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
ul {
  list-style-type: none;
}
.header-wrapper 
{
    border-bottom: solid 1px #abceee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  height: 1rem;
  align-items: center;
}
.header-wrapper .logo-box {
  width: 21.3%;
}
.header-wrapper .logo-box a {
  display: block;
}
.header-wrapper .logo-box a img {
  display: block;
  width: 100%;
}
.header-wrapper .user {
  font-size: 0;
  height: 0.5rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  background: url(../img/user.png) no-repeat left center;
  background-size: 0.5rem;
  padding-left: 0.7rem;
}
.header-wrapper .user a,
.header-wrapper .user span {
  display: inline-block;
  vertical-align: middle;
}
.header-wrapper .user a {
  font-size: var(--fs20);
  line-height: 24px;
  position: relative;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.header-wrapper .user a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0060b0;
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scaleX(0);
}
.header-wrapper .user a:hover {
  color: #0060b0;
}
.header-wrapper .user a:hover:after {
  transition: transform 0.5s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: left;
}
.header-wrapper .user span {
  width: 2px;
  height: 18px;
  background: #333;
  margin: 0 8px;
}
.pc-nav-box {
  flex: 1;
  padding: 0 1.7rem;
}
.pc-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.pc-nav-box li.on a,
.pc-nav-box li:hover a {
  font-family: medium;
}
.pc-nav-box a {
  font-size: var(--fs20);
  line-height: 1rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media screen and (max-width: 1004px) {
  .header-wrapper .box-container {
    height: 1.2rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header-wrapper .logo-box {
    width: 50%;
  }
  .header-wrapper .user {
    height: 0.6rem;
    background-size: 0.6rem;
    padding-left: 0.8rem;
  }
  .header-wrapper .user a {
    font-size: var(--fs18);
    line-height: 20px;
  }
  .header-wrapper .user span {
    height: 12px;
    width: 1px;
  }
  .header-wrapper .other-box {
    display: flex;
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    align-items: center;
  }
  .pc-nav-box {
    display: none;
  }
}
@media screen and (max-width: 1004px) {
  .nav-icon {
    font-size: 0;
    width: 0.46rem;
    height: 0.46rem;
    position: relative;
    margin-left: 0.3rem;
  }
  .nav-icon.on span:nth-child(1) {
    transform: rotate(45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon.on span:nth-child(2) {
    opacity: 0;
  }
  .nav-icon.on span:nth-child(3) {
    transform: rotate(-45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon span {
    display: inline-block;
    width: 100%;
    height: 0.04rem;
    background-color: #0060b0;
    position: absolute;
    left: 0;
    top: 0.2rem;
    z-index: 10;
    border-radius: 2px;
    transform-origin: center center;
    transition: margin 140ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 230ms, transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms, -webkit-transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  }
  .nav-icon span:nth-child(1) {
    margin-top: -6px;
  }
  .nav-icon span:nth-child(2) {
    margin-top: 0;
  }
  .nav-icon span:nth-child(3) {
    margin-top: 6px;
  }
  .phone-nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    position: fixed;
    right: 0;
    top: 1.2rem;
    background: #fff;
    z-index: 501;
    overflow: auto;
    border-top: 1px solid #f3f3f3;
  }
  .phone-nav ul {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.8s ease;
    -webkit-transition: max-height 0.8s ease;
    -moz-transition: max-height 0.8s ease;
    -ms-transition: max-height 0.8s ease;
    -o-transition: max-height 0.8s ease;
  }
  .phone-nav ul::-webkit-scrollbar {
    width: 4px;
  }
  .phone-nav ul::-webkit-scrollbar-track {
    background-color: #eaeaea;
  }
  .phone-nav ul::-webkit-scrollbar-thumb {
    background-color: #0060b0;
  }
  .phone-nav ul li {
    position: relative;
  }
  .phone-nav ul li.active .cat {
    color: #0060b0;
    font-weight: 700;
  }
  .phone-nav ul li.active .cat:before {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .phone-nav ul li > a {
    position: relative;
    display: block;
    font-size: 0.3rem;
    color: #333;
    line-height: 0.96rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .phone-nav ul li .cat:before,
  .phone-nav ul li .cat:after {
    content: "";
    display: inline-block;
    background: #0060b0;
    position: absolute;
    z-index: 10;
  }
  .phone-nav ul li .cat:before {
    width: 0.06rem;
    height: 0.26rem;
    right: 0.4rem;
    top: 0.36rem;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }
  .phone-nav ul li .cat:after {
    width: 0.26rem;
    height: 0.06rem;
    right: 0.3rem;
    top: 0.46rem;
  }
  .phone-nav ul li.on > a {
    font-weight: 700;
    color: #0060b0;
  }
  .phone-nav ul li .navs {
    background: #f9f9f9;
    width: 100%;
    display: none;
  }
  .phone-nav ul li .navs a {
    font-size: 14px;
    display: block;
    color: #666;
    padding-left: 0;
    line-height: 1rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .phone-nav ul li .navs a:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .search-form {
    top: 1.2rem;
    padding: 0.24rem 0;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.05);
    /* input placeholder  */
  }
  .search-form img {
    width: 14px;
  }
  .search-form .w960 {
    width: 100%;
    padding: 0 0.3rem;
  }
  .search-form .keywords {
    line-height: 40px;
    margin-left: 15px;
    font-size: 14px;
    padding-right: 20px;
  }
  .search-form ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
    font-size: 14px;
  }
  .search-form :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
    font-size: 14px;
  }
  .search-form ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    font-size: 14px;
  }
  .search-form :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999;
    font-size: 14px;
  }
  .search-form .close {
    margin-top: -10px;
    width: 16px;
    height: 16px;
    right: 15px;
  }
  .search-form .search-btn img {
    width: 16px;
  }
}
.footer-wrapper {
  padding: 0.8rem 0 0.48rem;
  background: #0060b0 url(../img/footerbg.png) no-repeat right bottom;
  background-size: 37.24%;
}
.footer-wrapper .box-1,
.footer-wrapper .box-2,
.footer-wrapper .other,
.footer-wrapper .box-3 {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-wrapper .logo {
  display: block;
  width: 20.89%;
}
.footer-wrapper .logo img {
  display: block;
  width: 100%;
}
.footer-wrapper .box-2 {
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-wrapper .other {
  align-items: flex-end;
}
.footer-wrapper .copyright,
.footer-wrapper .copyright a {
  font-size: var(--fs20);
  font-family: light;
  color: #fff;
}
.footer-wrapper .copyright {
  line-height: 24px;
}
.footer-wrapper .copyright a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-wrapper .copyright a:hover {
  text-decoration: underline;
}
.footer-wrapper .copyright img {
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.footer-wrapper .contactnew p {
  font-size: var(--fs20);
  line-height: 0.4rem;
  color: #ffffff;
}
.footer-wrapper .contactnew img {
  width: 0.2rem;
  margin-right: 0.12rem;
}
.footer-wrapper .cert {
  text-align: right;
  margin-left: 0.5rem;
}
.footer-wrapper .cert p img {
  width: 0.47rem;
}
.footer-wrapper .cert p:nth-child(2) {
  margin-top: 0.18rem;
}
.footer-wrapper .cert p:nth-child(2) img {
  width: 1.28rem;
}
.footer-nav-box a {
  font-size: var(--fs20);
  color: #fff;
  line-height: 0.3rem;
  position: relative;
  margin-right: 0.7rem;
}
.footer-nav-box a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scaleX(0);
}
.footer-nav-box a:last-child {
  margin-right: 0;
}
.footer-nav-box a.on {
  font-family: medium;
}
.footer-nav-box a:hover:after {
  transition: transform 0.5s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: left;
}
.share {
  font-size: 0;
}
.share p {
  font-size: var(--fs20);
  line-height: 24px;
  color: #ffffff;
  text-align: right;
  margin-bottom: 0.26rem;
}
.share ul li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}
.share ul li:last-child {
  margin-right: 0;
}
.share ul li:hover .icon .init {
  opacity: 0;
  visibility: hidden;
}
.share ul li:hover .icon .on {
  opacity: 1;
  visibility: visible;
}
.share ul li:hover .hidebox {
  opacity: 1;
  visibility: visible;
}
.share .icon {
  width: 0.46rem;
}
.share .icon img {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  display: block;
  width: 100%;
}
.share .icon .on {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.share .hidebox {
  position: absolute;
  left: 50%;
  bottom: 110%;
  z-index: 10;
  width: 3.96rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.share .hidebox img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.link {
  font-size: 0;
}
.link a {
  font-size: var(--fs20);
  margin-right: 0.25rem;
  font-family: light;
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
  color: #fff;
  position: relative;
}
.link a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scaleX(0);
}
.link a:hover:after {
  transition: transform 0.5s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: left;
}
.link a:last-child {
  margin-right: 0;
}
.swiper-box {
  position: relative;
}
.swiper-btn {
  display: inline-block;
  position: absolute;
  z-index: 10;
  width: 0.49rem;
  height: 0.49rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.swiper-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon2.png);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.swiper-btn:after {
  content: "";
  width: 34%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  background: #0060b0;
  border-radius: 60%;
  position: absolute;
  left: 32%;
  bottom: -4px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.swiper-btn:hover:before {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}
.swiper-btn:hover:after {
  opacity: 1;
  visibility: visible;
  opacity: 0.2;
}
.swiper-btn i {
  display: block;
  width: 12px;
  margin: 0 auto;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.swiper-btn.prev i {
  background-image: url(../img/iprev.png);
}
.swiper-btn.next i {
  background-image: url(../img/inext.png);
}
@media screen and (max-width: 1004px) {
  .swiper-btn {
    width: 0.64rem;
    height: 0.64rem;
  }
  .swiper-btn:after {
    height: 2px;
    bottom: -4px;
  }
  .swiper-btn i {
    width: 10px;
  }
  .footer-wrapper {
    padding-bottom: 0.8rem;
    background-size: 60%;
  }
  .footer-wrapper .box-1,
  .footer-wrapper .box-2,
  .footer-wrapper .box-3 {
    display: block;
  }
  .footer-wrapper .logo {
    width: 50%;
    margin: 0 auto;
  }
  .footer-wrapper .box-2 {
    margin-top: 0.6rem;
    padding: 0.6rem 0;
  }
  .footer-wrapper .other {
    margin-top: 0.48rem;
  }
  .footer-wrapper .copyright,
  .footer-wrapper .copyright a {
    font-size: var(--fs14);
  }
  .footer-wrapper .copyright {
    text-align: center;
    line-height: 20px;
  }
  .footer-wrapper .contactnew p {
    font-size: var(--fs18);
    line-height: 0.6rem;
  }
  .footer-wrapper .contactnew img {
    width: 0.3rem;
    margin-right: 0.16rem;
  }
  .footer-wrapper .cert {
    text-align: right;
    margin-left: 0.5rem;
  }
  .footer-wrapper .cert p img {
    width: 0.47rem;
  }
  .footer-wrapper .cert p:nth-child(2) {
    margin-top: 0.18rem;
  }
  .footer-wrapper .cert p:nth-child(2) img {
    width: 1.28rem;
  }
  .footer-nav-box {
    display: none;
  }
  .share p {
    text-align: left;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .share .icon {
    width: 0.64rem;
  }
  .share .hidebox {
    width: 3.96rem;
  }
  .link {
    margin-top: 0.24rem;
    text-align: center;
  }
  .link a {
    font-size: var(--fs14);
    line-height: 20px;
  }
}
.index-box-1 {
  padding: 1rem 0;
  background: url(../img/bannerbg.jpg) no-repeat center center;
  background-size: cover;
}
.index-box-1 .boxnew {
  width: 1160px;
  margin: 0 auto;
}
.index-box-1 .title {
  text-align: center;
  font-size: var(--fs36);
  line-height: 0.48rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 0.68rem;
}
.index-box-1 .title img {
  width: 0.38rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 0.2rem;
}
.index-box-1 .select-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  position: relative;
}
.index-box-1 .filter-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.index-box-1 .search,
.index-box-1 .hot-keywords {
  width: 960px;
}
.index-box-1 .search {
  background-image: linear-gradient(180deg, #f2f5f9 50%, #ffffff 100%), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, 
			normal;
  box-shadow: 14px 14px 50px 0px rgba(0, 96, 176, 0.2);
  border-radius: 34px;
  border: solid 2px #0060b0;
  /* input placeholder  */
  padding-left: 110px;
  margin-right: 20px;
}
.index-box-1 .search ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #03082d;
  font-size: var(--fs20);
}
.index-box-1 .search :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #03082d;
  font-size: var(--fs20);
}
.index-box-1 .search ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #03082d;
  font-size: var(--fs20);
}
.index-box-1 .search :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #03082d;
  font-size: var(--fs20);
}
.index-box-1 .text 
{
    margin-top: 0.2rem;
  font-size: var(--fs20);
  color: #333;
  font-family: medium;
  padding-left: 25px;
  background: transparent;
  line-height: 28px;
  height: 28px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.index-box-1 .search,
.index-box-1 .filterbtn {
  height: 68px;
  line-height: 68px;
}
.index-box-1 .filterbtn {
  display: block;
  width: 150px;
  margin-right:5px;
  font-size: var(--fs22);
  color: #fff;
  text-align: center;
  background-color: #0060b0;
  border: 2px solid #0060b0;
  border-radius: 34px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-1 .filterbtn:hover {
  color: #0060b0;
  border-color: #0060b0;
  background: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.index-box-1 .hot-keywords {
  font-size: 0;
  margin-top: 0.2rem;
}
.index-box-1 .hot-keywords a,
.index-box-1 .hot-keywords i,
.index-box-1 .hot-keywords span {
  display: inline-block;
  vertical-align: middle;
}
.index-box-1 .hot-keywords span,
.index-box-1 .hot-keywords a {
  font-family: light;
  font-size: var(--fs20);
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 6px;
}
.index-box-1 .hot-keywords i {
  margin: 0 0.22rem;
  width: 2px;
  height: 18px;
  background: #fff;
}
.index-box-1 .hot-keywords a {
  position: relative;
}
.index-box-1 .hot-keywords a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scaleX(0);
}
.index-box-1 .hot-keywords a:hover:after {
  transition: transform 0.5s ease;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: left;
}
.filter-box {
  width: 110px;
}
.filter-box .item {
  display: none;
}
.filter-box .caption {
  font-size: var(--fs20);
  color: #0060b0;
  font-family: medium;
  line-height: 68px;
  height: 68px;
  width: 100%;
  padding: 0 5px 0 0.3rem;
  cursor: pointer;
  user-select: none;
}
.filter-box .caption.on:after {
  transform: rotate(180deg);
}
.filter-box .caption:after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 8px;
  height: 68px;
  background: url(../img/idown.png) no-repeat center center;
  background-size: contain;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.filter-box .caption span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80%;
}
.filter-box .list {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 100%;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  display: none;
}
.filter-box .list a {
  display: block;
  line-height: 30px;
  color: #666;
  font-size: var(--fs16);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2px 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  border-radius: 3px;
}
.filter-box .list a:hover {
  color: #fff !important;
  background: rgba(0, 96, 176, 0.8);
}
.filter-box .list a.on {
  color: #0060b0;
}
.type-box {
  margin-bottom: 6px;
}
.type-box a {
  position: relative;
  display: inline-block;
  min-width: 90px;
  line-height: 38px;
  height: 38px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #0060b0;
  font-size: var(--fs20);
  border-radius: 19px;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0 0.26rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.type-box a.on {
  color: #fff;
  background: #0060b0 !important;
}
.type-box a.on:after {
  opacity: 1;
  visibility: visible;
}
.type-box a:after {
  content: "";
  border: 4px solid transparent;
  border-top-width: 8px;
  position: absolute;
  left: 50%;
  margin-left: -4px;
  bottom: -12px;
  z-index: 1;
  border-top-color: #0060b0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.mt80 {
  margin-top: 0.8rem;
}
.index-box-2 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.index-box-2 .cats {
  flex: 1;
  justify-content: center;
}
.index-box-2 .left,
.index-box-2 .right {
  width: 47.03%;
}
.index-box-2 .item {
  position: relative;
  display: none;
}
.index-box-2 ul {
  min-height: 4.32rem;
}
.index-box-2 li {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.36rem 0.25rem 0.6rem;
  margin-bottom: 0.09rem;
  background-image: linear-gradient(180deg, #f7f9fb 40%, #ffffff 100%), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, normal;
  box-shadow: 0px 6px 30px 0px rgba(37, 58, 119, 0.1);
  border-radius: 8px;
  border: solid 2px #ffffff;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-2 li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0060b0;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  margin-top: -4px;
  z-index: 10;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-2 li:last-child {
  margin-bottom: 0;
}
.index-box-2 li.on {
  padding-top: 0.6rem;
  padding-bottom: 0.34rem;
}
.index-box-2 li.on:before {
  width: 3px;
  height: 0.7rem;
  margin-top: -0.35rem;
  border-radius: 1px;
}
.index-box-2 li.on .title {
  font-family: medium;
}
.index-box-2 li.on .time {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.index-box-2 li.on .date {
  opacity: 0;
  visibility: hidden;
}
.index-box-2 li.on .imore {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}
.index-box-2 .title {
  flex: 1;
  margin-right: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-box-2 .time {
  position: absolute;
  left: 0.6rem;
  top: 0.32rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}
.index-box-2 .time,
.index-box-2 .date {
  font-size: var(--fs18);
  color: rgba(0, 0, 0, 0.6);
  line-height: 24px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-2 .imore {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translate(-20px, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.index-box-2 .childCats {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.index-box-2 .right ul {
  padding-left: 70px;
  display: none;
}
.index-title-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.index-title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000000;
  font-weight: 700;
}
.imore {
  display: block;
  width: 0.49rem;
  height: 0.49rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/next.png);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.cats {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  align-items: center;
}
.cats a {
  display: block;
  text-align: center;
  width: 1.6rem;
  height: 0.48rem;
  line-height: 0.44rem;
  border-radius: 24px;
  border: solid 2px #0060b0;
  background: #fff;
  color: #0060b0;
  font-size: var(--fs20);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  margin-right: 0.2rem;
}
.cats a:last-child {
  margin-right: 0;
}
.cats a.on {
  background: #0060b0;
  color: #fff;
}
.cats a:hover {
  box-shadow: 0 2px 30px rgba(0, 96, 176, 0.2);
}
.childCats.normal a {
  writing-mode: initial;
  width: 140px;
  line-height: 40px;
  height: 42px;
  margin-right: 0.2rem;
  display: inline-block;
}
.childCats a {
  display: block;
  width: 44px;
  height: 130px;
  line-height: 40px;
  text-align: center;
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
  font-size: var(--fs20);
  letter-spacing: 2px;
  border-radius: 22px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.2rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.childCats a:last-child {
  margin-bottom: 0;
}
.childCats a.on {
  background: #0060b0;
  color: #fff;
  border-color: #0060b0;
}
.more {
  position: relative;
  display: block;
  width: 0.84rem;
  height: 0.84rem;
  line-height: 0.84rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs20);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.more:before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon.png);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.more:after {
  content: "";
  width: 38%;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  background: #0060b0;
  border-radius: 60%;
  position: absolute;
  left: 31%;
  bottom: -4px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.more:hover:before {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}
.more:hover:after {
  opacity: 1;
  visibility: visible;
  opacity: 0.2;
}
.more:hover i {
  right: -12px;
}
.more:hover i:before {
  width: 16px;
}
.more i {
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  background: #0060b0;
  right: -17px;
  border-radius: 2px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.more i:before {
  content: "";
  width: 13px;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-3 {
  margin-top: 0.4rem;
}
.index-box-3 .swiper-box {
  padding: 0 calc((100% - 16.8rem) / 2);
}
.index-box-3 .index-title-box {
  margin-bottom: 0.2rem;
}
.index-box-3 .swiper-container {
  padding: 0.54rem calc((100% - 16.8rem) / 2) 40px;
}
.index-box-3 .swiper-slide-prev,
.index-box-3 .swiper-slide-duplicate-active {
  opacity: 0;
  visibility: hidden;
}
.index-box-3 .swiper-slide {
  width: 23.8%;
  height: auto;
  margin-right: 0.28rem;
  background-image: linear-gradient(180deg, #f2f4f7 50%, #ffffff 100%), linear-gradient(#99a9fa, #99a9fa);
  background-blend-mode: normal, 
			normal;
  box-shadow: 0px 11px 40px 0px rgba(37, 58, 119, 0.1);
  border-radius: 10px;
  border: solid 3px #ffffff;
  padding: 0 0.3rem 0.4rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-3 .swiper-slide:hover {
  border-color: rgba(0, 96, 176, 0.15);
}
.index-box-3 .swiper-slide:hover .icon {
  top: -0.6rem;
}
.index-box-3 .info {
  text-align: center;
  margin-top: -0.18rem;
}
.index-box-3 .icon {
  display: block;
  position: relative;
  top: -0.54rem;
  width: 1.08rem;
  margin: 0 auto;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-3 .title {
  font-family: medium;
  font-size: var(--fs30);
  line-height: 0.36rem;
}
.index-box-3 .brief {
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #666666;
  padding-top: 0.2rem;
  margin-top: 0.24rem;
  border-top: 1px solid rgba(7, 8, 13, 0.1);
}
.index-box-3 .prev {
  left: 0.46rem;
}
.index-box-3 .next {
  right: 0.46rem;
}
.index-box-4 {
  margin-top: 0.4rem;
}
.index-box-4 .item {
  display: none;
}
.index-box-4 .swiper-slide {
  width: 20%;
}
.index-box-4 .swiper-slide a {
  display: block;
  width: 228px;
  height: 323px;
  margin: 0 auto;
  background: url(../img/bookbg.png) no-repeat center center;
  background-size: contain;
  position: relative;
}
.index-box-4 .swiper-slide a:before {
  content: "";
  width: 140%;
  height: 4.33rem;
  background: url(../img/bookshadow.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: -14%;
  top: -12%;
  z-index: -1;
}
.index-box-4 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-4 .pic {
  border-radius: 5px 5px 0 0;
}
.index-box-4 .pic img {
  height: 173px;
  object-fit: cover;
}
.index-box-4 .inner {
  padding-right: 24px;
  padding-left: 1px;
  transform: skew(0deg, -1deg);
}
.index-box-4 .info {
  padding: 0 18px 0 16px;
}
.index-box-4 .title {
  font-size: var(--fs20);
  line-height: 26px;
  color: #ffffff;
  font-family: medium;
  letter-spacing: 1px;
  height: 52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.25rem;
}
.index-box-4 .line {
  margin-top: 0.16rem;
  border-top: dashed 1px rgba(255, 255, 255, 0.6);
}
.index-box-5 .swiper-slide {
  width: 23.21%;
  margin-right: 2.386%;
}
.index-box-5 .swiper-slide:last-child {
  margin-right: 0;
}
.index-box-5 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-5 .swiper-slide:hover .title {
  color: #0060b0;
}
.index-box-5 .pic {
  border-radius: 0.1rem;
}
.index-box-5 .pic img {
  height: 2.54rem;
  object-fit: cover;
}
.index-box-5 .title {
  font-size: var(--fs24);
  line-height: 32px;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: medium;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  margin-top: 0.3rem;
}
.index-box-5 p {
  font-family: "bm";
  font-size: var(--fs18);
  line-height: 30px;
  color: #0060b0;
  margin-top: 0.24rem;
}
.index-box-6 {
  padding-bottom: 0.9rem;
}
.index-box-6 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.index-box-6 li {
  width: 15.77%;
  padding: 0.25rem;
  background-color: #ffffff;
  box-shadow: 0px 5px 25px 0px rgba(13, 26, 53, 0.1);
  border-radius: 5px;
  margin-right: 1.076%;
  margin-top: 1.076%;
  text-align: center;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-6 li:hover {
  box-shadow: 0 2px 30px rgba(0, 96, 176, 0.2);
}
.index-box-6 li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-6 .pic img {
  height: 0.6rem;
  object-fit: contain;
}
.index-box-6 p {
  font-size: var(--fs20);
  line-height: 24px;
  color: #1c1d25;
  margin-top: 0.07rem;
}
@media screen and (min-width: 1004px) {
  .page-nav-wrapper {
    position: relative;
    z-index: 20;
    background-color: #fff;
    width: 100%;
  }
  .page-nav-wrapper:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e4e4e4;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .page-nav-wrapper .intruction-caption {
    display: none;
  }
  .page-nav-wrapper .nav {
    position: relative;
    z-index: 2;
    font-size: 0;
    display: flex;
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    justify-content: center;
  }
  .page-nav-wrapper .nav > a {
    position: relative;
    font-size: var(--fs16);
    line-height: 0.8rem;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-right: 0.72rem;
  }
  .page-nav-wrapper .nav > a:last-child {
    margin-right: 0;
  }
  .page-nav-wrapper .nav > a:last-child:after {
    display: none;
  }
  .page-nav-wrapper .nav > a.on,
  .page-nav-wrapper .nav > a:hover {
    color: #0060b0;
  }
  .page-nav-wrapper .nav > a.on:before,
  .page-nav-wrapper .nav > a:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .page-nav-wrapper .nav > a:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    background-color: #0060b0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .type-box a:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  .childCats a:hover {
    border-color: #0060b0;
    box-shadow: 0 2px 30px rgba(0, 96, 176, 0.2);
  }
  .index-box-4 .swiper-container,
  .index-box-5 .swiper-container,
  .index-box-4 .swiper-wrapper,
  .index-box-5 .swiper-wrapper {
    overflow: inherit;
  }
  .index-box-6 li:nth-child(-n+6) {
    margin-top: 0;
  }
  .index-box-6 li:nth-child(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1600px) {
  .index-box-3 .title {
    font-size: var(--fs27);
  }
  .childCats a {
    height: 110px;
    font-size: var(--fs18);
  }
  .index-title {
    font-size: var(--fs44);
  }
  .link a,
  .footer-wrapper .copyright,
  .footer-wrapper .copyright a,
  .cats a,
  .more,
  .index-box-3 .brief,
  .index-box-2 .title {
    font-size: var(--fs18);
  }
  .index-box-4 .swiper-slide a:before {
    height: 120%;
    top: -4%;
  }
  .footer-nav-box a {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .index-box-3 .title {
    font-size: var(--fs24);
  }
  .childCats a {
    margin-bottom: 0.14rem;
  }
  .index-box-4 .swiper-slide a {
    width: 200px;
    height: 283px;
  }
  .index-box-4 .inner {
    padding-right: 21px;
  }
  .index-box-4 .pic img {
    height: 152px;
  }
  .index-box-4 .title {
    font-size: var(--fs18);
    line-height: 24px;
    height: 48px;
  }
  .index-box-2 .time {
    top: 0.24rem;
  }
}
@media screen and (max-width: 1280px) {
  .index-box-4 .swiper-slide a {
    width: 165px;
    height: 234px;
  }
  .index-box-4 .inner {
    padding-right: 17px;
  }
  .index-box-4 .pic img {
    height: 124px;
  }
  .index-box-4 .info {
    padding: 0 12px;
  }
}
@media screen and (max-width: 1004px) {
  .page-nav-wrapper {
    position: relative;
    padding: 0;
    height: auto;
    margin-top: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    background: #f4f4f4;
  }
  .page-nav-wrapper .box-container {
    height: auto;
    padding: 0;
  }
  .page-nav-wrapper .intruction-caption {
    position: relative;
    display: block;
    line-height: 0.88rem;
    padding: 0 0.3rem;
    background: #0060b0;
    color: #fff;
    font-size: 0.26rem;
  }
  .page-nav-wrapper .intruction-caption.extend:after {
    transform: rotateX(180deg);
  }
  .page-nav-wrapper .intruction-caption:after {
    display: inline-block;
    position: absolute;
    right: 0.3rem;
    top: 0;
    z-index: 10;
    content: "";
    width: 0.26rem;
    height: 100%;
    background: url(../img/down.png) no-repeat center center;
    background-size: contain;
  }
  .page-nav-wrapper .nav {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    width: 100%;
    background: #f7f8f9;
    display: none;
  }
  .page-nav-wrapper .nav a {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 0.84rem;
    padding: 0 0.3rem;
    font-size: 0.26rem;
    border-top: 1px solid #f2f2f2;
  }
  .page-nav-wrapper .nav a:first-child {
    border-top: none;
  }
  .page-nav-wrapper .nav > a.on,
  .page-nav-wrapper .nav > a:hover {
    background: none;
  }
  .page-nav-wrapper .nav > a:after {
    display: none;
  }
  .index-box-1 .boxnew {
    width: 100%;
    padding: 0 0.3rem;
  }
  .index-box-1 .title {
    font-size: var(--fs40);
    line-height: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 0.48rem;
  }
  .index-box-1 .title img {
    width: 0.6rem;
  }
  .index-box-1 .search {
    width: calc(100% - 90px - 0.2rem);
    border-radius: 0.42rem;
    border-width: 1px;
    /* input placeholder  */
    padding-left: 80px;
    margin-right: 0.2rem;
  }
  .index-box-1 .search ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #03082d;
    font-size: var(--fs16);
  }
  .index-box-1 .search :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #03082d;
    font-size: var(--fs16);
  }
  .index-box-1 .search ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #03082d;
    font-size: var(--fs16);
  }
  .index-box-1 .search :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #03082d;
    font-size: var(--fs16);
  }
  .index-box-1 .text {
    font-size: var(--fs16);
    padding-left: 0.25rem;
    line-height: 20px;
    height: 20px;
  }
  .index-box-1 .search,
  .index-box-1 .filterbtn {
    height: 0.84rem;
    line-height: 0.80rem;
  }
  .index-box-1 .filterbtn {
    width: 80px;
    margin-right:5px;
    font-size: var(--fs14);
    border-width: 1px;
    border-radius: 0.42rem;
  }
  .index-box-1 .hot-keywords {
    width: 100%;
    margin-top: 0.2rem;
  }
  .index-box-1 .hot-keywords span,
  .index-box-1 .hot-keywords a {
    font-size: var(--fs14);
    line-height: 18px;
  }
  .index-box-1 .hot-keywords i {
    margin: 0 0.24rem;
    height: 12px;
    width: 1px;
  }
  .filter-box {
    width: 80px;
  }
  .filter-box .caption {
    font-size: var(--fs14);
    line-height: 0.84rem;
    height: 0.84rem;
  }
  .filter-box .caption:after {
    margin-left: 6px;
    width: 6px;
    height: 0.84rem;
  }
  .filter-box .list a {
    line-height: 24px;
    font-size: var(--fs14);
  }
  .type-box {
    margin-bottom: 10px;
  }
  .type-box a {
    min-width: 50px;
    line-height: 28px;
    height: 28px;
    font-size: var(--fs14);
    border-radius: 16px;
    padding: 0 0.2rem;
    margin-right: 0.1rem;
    margin-bottom: 0.14rem;
  }
  .type-box a:after {
    border-width: 3px;
    border-top-width: 5px;
    margin-left: -3px;
    bottom: -8px;
  }
  .index-box-2 .box-container {
    display: block;
  }
  .index-box-2 .left,
  .index-box-2 .right {
    width: 100%;
  }
  .index-box-2 ul {
    min-height: inherit;
  }
  .index-box-2 li {
    padding: 0.36rem 0.4rem 0.36rem 0.7rem;
    margin-bottom: 0.24rem;
    border-width: 1px;
    border-radius: 4px;
  }
  .index-box-2 li:before {
    width: 6px;
    height: 6px;
    left: 0.3rem;
    margin-top: -3px;
  }
  .index-box-2 li.on {
    padding-top: 0.6rem;
    padding-bottom: 0.34rem;
  }
  .index-box-2 li.on:before {
    width: 2px;
  }
  .index-box-2 .title {
    margin-right: 0.48rem;
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .index-box-2 .time {
    left: 0.8rem;
    top: 0.2rem;
  }
  .index-box-2 .time,
  .index-box-2 .date {
    font-size: var(--fs18);
    line-height: 20px;
  }
  .index-box-2 .right {
    margin-top: 0.8rem;
  }
  .index-box-2 .right ul {
    padding-left: 50px;
  }
  .index-title-box {
    display: flex;
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
  }
  .imore {
    width: 0.64rem;
    height: 0.64rem;
  }
  .cats a {
    width: auto;
    min-width: 1.8rem;
    height: 0.74rem;
    line-height: 0.68rem;
    border-radius: 0.37rem;
    font-size: var(--fs18);
    margin-right: 0.3rem;
    padding: 0 0.2rem;
  }
  .childCats.normal a {
    min-width: 90px;
    width: auto;
    line-height: 30px;
    height: 32px;
    padding: 0 0.24rem;
    border-radius: 20px;
  }
  .childCats a {
    width: 32px;
    height: 88px;
    line-height: 28px;
    font-size: var(--fs16);
    border-radius: 16px;
  }
  .more {
    font-size: 0.24rem;
    width: 0.9rem;
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .more:after {
    height: 2px;
  }
  .more:hover i {
    right: -6px;
  }
  .more:hover i:before {
    width: 8px;
  }
  .more i {
    width: 14px;
    height: 2px;
    right: -7px;
    border-radius: 1px;
  }
  .more i:before {
    width: 6px;
    border-radius: 1px;
  }
  .index-box-3 {
    margin-top: 0.8rem;
  }
  .index-box-3 .swiper-box {
    padding: 0 0.3rem;
  }
  .index-box-3 .index-title-box {
    margin-bottom: 0.2rem;
  }
  .index-box-3 .swiper-container {
    padding: 0.54rem 0.3rem 40px;
  }
  .index-box-3 .swiper-slide-prev,
  .index-box-3 .swiper-slide-duplicate-active {
    opacity: 1;
    visibility: visible;
  }
  .index-box-3 .swiper-slide {
    width: 48%;
    margin-right: 15px;
    border-radius: 0.16rem;
    border-width: 2px;
    padding: 0 0.4rem 0.4rem;
  }
  .index-box-3 .swiper-slide:hover .icon {
    top: -0.48rem;
  }
  .index-box-3 .info {
    margin-top: -0.1rem;
  }
  .index-box-3 .icon {
    top: -0.45rem;
    width: 0.9rem;
  }
  .index-box-3 .title {
    font-size: var(--fs24);
    line-height: 0.44rem;
  }
  .index-box-3 .brief {
    font-size: var(--fs16);
    line-height: 0.44rem;
    padding-top: 0.1rem;
    margin-top: 0.16rem;
  }
  .index-box-3 .prev {
    left: 0;
  }
  .index-box-3 .next {
    right: 0;
  }
  .index-box-4 .box-container {
    padding-left: 0;
    padding-right: 0;
  }
  .index-box-4 .index-title-box {
    display: block;
    position: relative;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .index-box-4 .index-title-box .more {
    position: absolute;
    right: 0.3rem;
    top: 0;
    z-index: 1;
  }
  .index-box-4 .index-title-box .childCats {
    width: 100%;
    margin-top: 0.4rem;
    text-align: center;
  }
  .index-box-4 .swiper-container {
    padding-left: 0.24rem;
    padding-right: 0.24rem;
    padding-bottom: 0.4rem;
  }
  .index-box-4 .swiper-slide {
    width: 50%;
    padding: 0.2rem 0 0.6rem;
  }
  .index-box-4 .swiper-slide a {
    width: 3.4rem;
    height: 4.82rem;
  }
  .index-box-4 .swiper-slide a:before {
    top: -5%;
  }
  .index-box-4 .pic {
    border-radius: 5px 5px 0 0;
  }
  .index-box-4 .pic img {
    height: 112px;
  }
  .index-box-4 .inner {
    padding-right: 16px;
    padding-left: 0px;
  }
  .index-box-4 .title {
    font-size: var(--fs20);
    margin-top: 0.36rem;
    line-height: 22px;
    height: 44px;
  }
  .index-box-4 .line {
    margin-top: 0.3rem;
  }
  .index-box-4 .swiper-pagination {
    display: block;
    bottom: 0;
    font-size: 0;
  }
  .index-box-4 .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: none;
    margin: 0 5px;
    width: 8px;
    height: 8px;
    border: 1px solid #0060b0;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
  }
  .index-box-4 .swiper-pagination .swiper-pagination-bullet:link,
  .index-box-4 .swiper-pagination .swiper-pagination-bullet:visited,
  .index-box-4 .swiper-pagination .swiper-pagination-bullet:active,
  .index-box-4 .swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
  }
  .index-box-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0060b0;
    width: 30px;
    border-radius: 15px;
  }
  .index-box-5 .box-container {
    padding: 0;
  }
  .index-box-5 .index-title-box {
    padding: 0 0.3rem;
  }
  .index-box-5 .swiper-container {
    padding-bottom: 0.6rem;
  }
  .index-box-5 .swiper-slide {
    width: 48%;
    margin-right: 0;
  }
  .index-box-5 .pic img {
    height: auto;
  }
  .index-box-5 .title {
    font-size: var(--fs24);
    line-height: 0.48rem;
  }
  .index-box-5 p {
    font-size: var(--fs16);
    line-height: 0.44rem;
    margin-top: 0.1rem;
  }
  .index-box-5 .swiper-pagination {
    display: block;
    bottom: 0;
    font-size: 0;
  }
  .index-box-5 .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: none;
    margin: 0 5px;
    width: 8px;
    height: 8px;
    border: 1px solid #0060b0;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
  }
  .index-box-5 .swiper-pagination .swiper-pagination-bullet:link,
  .index-box-5 .swiper-pagination .swiper-pagination-bullet:visited,
  .index-box-5 .swiper-pagination .swiper-pagination-bullet:active,
  .index-box-5 .swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
  }
  .index-box-5 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0060b0;
    width: 30px;
    border-radius: 15px;
  }
  .index-box-6 {
    padding-bottom: 0.8rem;
  }
  .index-box-6 li {
    width: calc((100% - .6rem) / 4);
    padding: 0.2rem;
    margin-right: 0.2rem;
    margin-top: 0.2rem;
  }
  .index-box-6 li:nth-child(-n+4) {
    margin-top: 0;
  }
  .index-box-6 li:nth-child(4n) {
    margin-right: 0;
  }
  .index-box-6 .pic img {
    height: 0.6rem;
  }
  .index-box-6 p {
    font-size: var(--fs14);
    margin-top: 0.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.98rem;
}
.pageNum a {
  display: inline-block;
  color: #4d4d4d;
  font-size: 14px;
  font-family: "hr";
  vertical-align: middle;
  margin: 0 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.48rem;
  background-color: #fff;
  border: solid 1px #eee;
  text-align: center;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}
.pageNum a:first-child {
  margin-left: 0;
}
.pageNum a:last-child {
  margin-right: 0;
}
.pageNum .dot {
  line-height: 0.38rem;
}
.pageNum .btn {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
}
.pageNum .prev {
  background-image: url(../img/icon-left2.png);
}
.pageNum .prev:hover {
  background-image: url(../img/icon-left.png);
}
.pageNum .next {
  background-image: url(../img/icon-right2.png);
}
.pageNum .next:hover {
  background-image: url(../img/icon-right.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #0060b0;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #0060b0;
  color: #fff;
  font-size: 12px;
}
.page-wrapper .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
}
.search-wrapper .result {
  margin-bottom: 0.2rem;
}
.search-wrapper .result span {
  display: inline-block;
  font-size: var(--fs16);
  margin-right: 0.3rem;
  line-height: 0.48rem;
}
.search-wrapper .result b {
  display: inline-block;
  margin: 0 4px;
  color: #cd0000;
  font-family: "mb";
  text-decoration: underline;
}
.search-wrapper .list li {
  position: relative;
  list-style: none;
  border-bottom: 1px dashed #eee;
}
.search-wrapper .list li:first-child {
  border-top: 1px dashed #eee;
}
.search-wrapper .list li:hover .title {
  color: #0060b0;
}
.search-wrapper .list li a {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  padding: 0.1rem 0;
  align-items: center;
}
.search-wrapper .list .title {
  flex: 1;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.48rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.search-wrapper .list p {
  font-size: var(--fs16);
  color: #999;
  font-family: "mr";
}
@media screen and (max-width: 1004px) {
  .page-wrapper .content {
    line-height: 0.48rem;
  }
  .search-wrapper .result {
    margin-bottom: 0.3rem;
  }
  .search-wrapper .result span {
    font-size: var(--fs14);
    margin-right: 0.48rem;
  }
  .search-wrapper .list li a {
    padding: 0.2rem 0;
  }
  .search-wrapper .list .title {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-right: 0.6rem;
  }
  .search-wrapper .list p {
    font-size: var(--fs14);
  }
}
.imgScale {
  position: relative;
}
.imgScale:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.imgScale:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.imgScale:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@media screen and (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 5px;
    /*
    background-color: #f7f8f9;
*/
  }
  ::-webkit-scrollbar-thumb 
  {
      /*
    background-color: #0060b0;
*/
  }
}
@media screen and (max-width: 1004px) {
  .box-container,
  .w1200 {
    width: 100%;
    padding: 0 0.3rem;
  }
  .pic img.pc {
    display: none;
  }
  .pic img.phone {
    display: block;
  }
}
